crypto/tls.cipherSuite.flags (field)

11 uses

	crypto/tls (current package)
		cipher_suites.go#L145: 	flags  int
		common.go#L1369: 			if c.flags&suiteECDHE != 0 {
		common.go#L1372: 			if vers < VersionTLS12 && c.flags&suiteTLS12 != 0 {
		common.go#L1450: 		if c.flags&suiteECDHE == 0 {
		common.go#L1453: 		if c.flags&suiteECSign != 0 {
		common.go#L1462: 		if vers < VersionTLS12 && c.flags&suiteTLS12 != 0 {
		handshake_client.go#L101: 			return cipherSuiteByID(id).flags&suiteTLS12 != 0
		handshake_server.go#L433: 	if c.flags&suiteECDHE != 0 {
		handshake_server.go#L437: 		if c.flags&suiteECSign != 0 {
		handshake_server.go#L447: 	if hs.c.vers < VersionTLS12 && c.flags&suiteTLS12 != 0 {
		prf.go#L95: 		if suite.flags&suiteSHA384 != 0 {